home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Applications / SAT Quizzer / typedefs.h < prev   
Text File  |  1993-07-09  |  398b  |  23 lines

  1. /* typedefs.h for SAT Quizzer v0.3 */
  2.  
  3. enum pos {noun, verb, adj, other} ;
  4.  
  5. typedef char wordtype[MAXWORD];
  6. typedef char meaningtype[MAXMEANING];
  7. typedef enum pos postype;
  8.  
  9. struct entry{
  10.     postype partofspeech;
  11.     wordtype word;
  12.     meaningtype definition;
  13. } ;
  14.  
  15. typedef struct node {
  16.     struct entry info;
  17.     struct node *next;
  18. } *wordlist;
  19.  
  20. typedef wordlist allwords[NUMSLOTS];
  21.  
  22. typedef wordlist *ptrarray;
  23.